From 5a0dc74dedc0dcb495492eee12f9588a7b152f8d Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Tue, 7 Oct 2014 00:42:46 -0400 Subject: [PATCH] Inspector: Use text attributes for monospace labels --- gtk/inspector/general.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/gtk/inspector/general.c b/gtk/inspector/general.c index 773ef889a1..57c6e4c8d4 100644 --- a/gtk/inspector/general.c +++ b/gtk/inspector/general.c @@ -106,10 +106,13 @@ init_version (GtkInspectorGeneral *gen) static void set_monospace_font (GtkWidget *w) { - PangoFontDescription *font_desc; - font_desc = pango_font_description_from_string ("monospace"); - gtk_widget_override_font (w, font_desc); - pango_font_description_free (font_desc); + PangoAttrList *attrs; + + attrs = pango_attr_list_new (); + pango_attr_list_insert (attrs, pango_attr_fallback_new (FALSE)); + pango_attr_list_insert (attrs, pango_attr_family_new ("Monospace")); + gtk_label_set_attributes (GTK_LABEL (w), attrs); + pango_attr_list_unref (attrs); } static void -- 2.30.2